.updates-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -15px;
    /* Adjust negative margin to match column padding */
    margin-right: -15px;
    /* Adjust negative margin to match column padding */
}

.updates-section .col-md-4 {
    flex: 1 1 32%;
    /* Slightly increased to create more space */
    max-width: 32%;
    /* Slightly increased to create more space */
    box-sizing: border-box;
    padding-left: 15px;
    /* Adjust padding to create even spacing between columns */
    padding-right: 15px;
    /* Adjust padding to create even spacing between columns */
}

.updates-section .third-fourth-container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .updates-section .col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
    }
}